home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Narzedzia systemowe / Inno Setup 5.0.4 Beta / isetup-5.0.4-beta.exe / {app} / Examples / Example3.iss < prev    next >
Text File  |  2003-04-13  |  1KB  |  35 lines

  1. ; -- Example3.iss --
  2. ; Same as Example1.iss, but creates some registry entries too.
  3.  
  4. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  5.  
  6. [Setup]
  7. AppName=My Program
  8. AppVerName=My Program version 1.5
  9. DefaultDirName={pf}\My Program
  10. DefaultGroupName=My Program
  11. UninstallDisplayIcon={app}\MyProg.exe
  12.  
  13. [Files]
  14. Source: "MyProg.exe"; DestDir: "{app}"
  15. Source: "MyProg.hlp"; DestDir: "{app}"
  16. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  17.  
  18. [Icons]
  19. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  20.  
  21. ; NOTE: Most apps do not need registry entries to be pre-created. If you
  22. ; don't know what the registry is or if you need to use it, then chances are
  23. ; you don't need a [Registry] section.
  24.  
  25. [Registry]
  26. ; Start "Software\My Company\My Program" keys under HKEY_CURRENT_USER
  27. ; and HKEY_LOCAL_MACHINE. The flags tell it to always delete the
  28. ; "My Program" keys upon uninstall, and delete the "My Company" keys
  29. ; if there is nothing left in them.
  30. Root: HKCU; Subkey: "Software\My Company"; Flags: uninsdeletekeyifempty
  31. Root: HKCU; Subkey: "Software\My Company\My Program"; Flags: uninsdeletekey
  32. Root: HKLM; Subkey: "Software\My Company"; Flags: uninsdeletekeyifempty
  33. Root: HKLM; Subkey: "Software\My Company\My Program"; Flags: uninsdeletekey
  34. Root: HKLM; Subkey: "Software\My Company\My Program\Settings"; ValueType: string; ValueName: "Path"; ValueData: "{app}"
  35.